home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World Tours: Brazil
/
WorldTours: Brazil.iso
/
pc
/
content
/
main.dir
/
00052_Script_select chapter
< prev
next >
Wrap
Text File
|
2007-04-22
|
602b
|
37 lines
global chapterCount,firstChapter,curChapter
on mouseenter
n=the currentspriteNum
if sprite(n+20).member.text="" then exit
sprite(n+10).forecolor=4
sprite(n+20).forecolor=4
cursor 280
end
on mouseleave
n=the currentspriteNum
sprite(n+10).forecolor=0
sprite(n+20).forecolor=0
cursor -1
end
on mouseup
n=the currentspriteNum
if sprite(n+20).member.text="" then exit
curChapter=firstChapter+(n-7)
if curChapter>chapterCount then curChapter=chapterCount
gotoVideo()
refalshChapterContent()
cursor -1
end